home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / RTFEDIT.PAK / RTFEDIT.RC < prev    next >
Text File  |  1997-05-06  |  3KB  |  96 lines

  1. #include "resource.h"
  2.  
  3. #if !defined (WORKSHOP_INVOKED)
  4. #include <windows.h>
  5. #endif
  6.  
  7. #include "winver.h"
  8.  
  9. IDI_APPICON             ICON    DISCARDABLE     "RTFEDIT.ICO"
  10.  
  11. ABOUTBOX DIALOG DISCARDABLE  22, 17, 167, 73
  12. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  13. CAPTION "About RTF Edit"
  14. FONT 8, "System"
  15. BEGIN
  16.     DEFPUSHBUTTON   "OK",IDOK,132,2,32,14,WS_GROUP
  17.     ICON            IDI_APPICON,-1,3,2,18,20
  18.     LTEXT           "CompanyName",IDD_VERFIRST,30,2,100,8
  19.     LTEXT           "FileDescription",101,30,11,100,8
  20.     LTEXT           "FileVersion",102,30,20,137,8
  21.     LTEXT           "LegalCopyright",103,30,29,137,8
  22.     LTEXT           "LegalTrademarks",IDD_VERLAST,30,47,136,27
  23.     CONTROL         "",501,"Static",SS_BLACKRECT,29,43,138,1
  24. END
  25.  
  26.  
  27. RTFEDIT MENU DISCARDABLE 
  28. BEGIN
  29.     POPUP "&File"
  30.     BEGIN
  31.         MENUITEM "E&xit",                       IDM_EXIT
  32.     END
  33.     POPUP "&Edit"
  34.     BEGIN
  35.         MENUITEM "&Bold",                       IDM_BOLD
  36.         MENUITEM "&Italic",                     IDM_ITALIC
  37.         MENUITEM "&Underline",                  IDM_UNDERLINE
  38.         MENUITEM SEPARATOR
  39.         MENUITEM "&Fonts...",                   IDM_FONTS
  40.     END
  41.     POPUP "&Help"
  42.     BEGIN
  43.         MENUITEM "&About...",                   IDM_ABOUT
  44.     END
  45. END
  46.  
  47.  
  48. RTFEDIT ACCELERATORS MOVEABLE PURE 
  49. BEGIN
  50.     "Q",            IDM_EXIT,               VIRTKEY, CONTROL
  51. END
  52.  
  53.  
  54. VS_VERSION_INFO VERSIONINFO
  55.  FILEVERSION 4,0,0,0
  56.  PRODUCTVERSION 4,0,0,0
  57.  FILEFLAGSMASK 0x3fL
  58. #ifdef _DEBUG
  59.  FILEFLAGS 0xbL
  60. #else
  61.  FILEFLAGS 0xaL
  62. #endif
  63.  FILEOS 0x10001L
  64.  FILETYPE 0x1L
  65.  FILESUBTYPE 0x0L
  66. BEGIN
  67.     BLOCK "StringFileInfo"
  68.     BEGIN
  69.         BLOCK "040904E4"
  70.         BEGIN
  71.             VALUE "CompanyName", "Microsoft Corporation\0"
  72.             VALUE "FileDescription", "RTF Edit Control Example Application\0"
  73.             VALUE "FileVersion", "Version 4.0\0"
  74.             VALUE "InternalName", "RTFEdit\0"
  75.             VALUE "LegalCopyright", "Copyright \251 Microsoft Corp. 1990-1995\0"
  76.             VALUE "LegalTrademarks", "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation\0"
  77.             VALUE "ProductName", "RTFEdit\0"
  78.             VALUE "ProductVersion", "Version 4.0\0"
  79.         END
  80.     END
  81.     BLOCK "VarFileInfo"
  82.     BEGIN
  83.         VALUE "Translation", 0x409, 1252
  84.     END
  85. END
  86.  
  87.  
  88.  
  89. STRINGTABLE DISCARDABLE 
  90. BEGIN
  91.     IDS_APPNAME             "RTFEdit"
  92.     IDS_DESCRIPTION         "RTF Edit Control Example Application"
  93. END
  94.  
  95.  
  96.